What are the required elements on the project tag at the top level of Maven POM.
project
modelVersion
groupId
version
projectId
How can you create a Maven project?
Using the command mvn archetype:generate and selecting an archetype as template.
mvn archetype:generate
Creating the pom.xml and the directories manually.
pom.xml
Running mvn package
mvn package
Next Concept